home *** CD-ROM | disk | FTP | other *** search
- /*
-
- **************************
- **** xFX ARexx script ****
- **************************
-
-
- DiskCopy
- */
-
-
- if ~show('P','xFX.1') then do /* Check if xFX is running */
- say 'xFX not running !'
- exit
- end
-
- InDev = ''
- OutDev = ''
-
- say 'Input device:'
- parse pull InDev
- if InDev ~= '' then do
- say 'Output device:'
- parse pull OutDev
- if OutDev ~= '' then do
- if InDev ~= OutDev then address 'xFX.1' copy InDev to OutDev verify
- else address 'xFX.1' copy InDev verify
- say 'Done.'
- end
- end
-